home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19990725-20000114 / 000278_news@columbia.edu _Tue Nov 16 10:01:45 1999.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id KAA26008
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Tue, 16 Nov 1999 10:01:45 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id JAA01804
  7.     for kermit.misc@watsun.cc.columbia.edu; Tue, 16 Nov 1999 09:39:07 -0500 (EST)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Subject: Re: auto-dial pager to alert of system trouble
  11. Date: 16 Nov 1999 14:39:06 GMT
  12. Organization: Columbia University
  13. Message-ID: <80rqaa$1oa$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <DI4Y3.59665$it.1466850@news2.rdc1.on.home.com>,
  17. Myles Fudge <mfudge@christiegrp.com> wrote:
  18. : > : I'm looking for a program that I can call from within a script which
  19. : > : will dial my pager when there is system trouble.
  20. : > :
  21. : > C-Kermit:
  22. : >
  23. : >   http://www.columbia.edu/kermit/ck70.html
  24. : >   http://www.columbia.edu/kermit/pagers.html
  25. : >   http://www.columbia.edu/kermit/ckscripts.html
  26. :
  27. : It looks like your software will certainly accomplish what I am interested
  28. : in.  There are way too many features that I am not interested in, however.
  29. : Do I have to install the whole package just to send a numeric message?  I
  30. : was thinking of a solution in the order of a few K if possible.
  31. You can build a custom version that omits many of the features you don't
  32. need.  The method is described in:
  33.  
  34.   ftp://kermit.columbia.edu/kermit/test/text/ckccfg.txt
  35.  
  36. Obviously you need communications i/o, dialing, and the command language.
  37. Here is a quick suggestion for building a smaller executable:
  38.  
  39.   make xxxx "KFLAGS=-DNODEBUG -DNCSETS -DNOXFER -DNOCURSES -DNOHELP -DNONET"
  40.  
  41. where 'xxxx' is the appropriate target in the makefile.  This cuts the
  42. executable size by about 50%.  Further reductions are possible.
  43.  
  44. - Frank